home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / apps / xconf / ConfMsg.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  1KB  |  47 lines

  1. /*
  2.  * Copyright 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. //
  18. //  Author:             Jesse Rendleman (jesse@sgi.com)
  19. //
  20.  
  21. // unix includes
  22. #include <sys/types.h>
  23.  
  24. // message types
  25. #define MESSAGE   0
  26. #define URGENT    1
  27. #define PRIVATE   2
  28. #define HELP      3
  29. #define RING      4
  30. #define REPLY     5
  31. #define USER      6
  32. #define GROUP     7
  33. #define SET_GROUP 8
  34. #define WHO_REQ   9
  35. #define BROADCAST 10
  36. #define FIND      11
  37. #define LOGIN     100
  38. #define LOGOUT    101
  39.  
  40. typedef struct {
  41.    short flags;
  42.    char user[30];
  43.    char group[30];
  44.    char data[256];
  45. } Message;
  46.  
  47.